www-Sharp.ClrHost is based on objects placed on HTML page with OBJECT tag. This section describes objects that are available in www-Sharp.ClrHost and their properties and parameters.
Properties could be accessed from script (JScript, VBScript and others), parameters could be specified with PARAM tag.
Objects available in www-Sharp.ClrHost are:
Object | Description |
---|---|
ClrDomain | Represents .Net domain. One domain is created automatically when first ClrDomain object is encountered. |
ClrInstance | Represents .Net object. If object is COM-visible you may access its properties and methods from script. You may specify initial values for object properties with PARAM tags. .Net object must have public default constructor (constructor that has no parameters). |
ClrControl | Represents .Net control placed onto HTML page. Most but not all .Net controls could be placed onto HTML page. If control is COM-visible you may access control properties and methods from script. You may specify initial values for control propertyies with PARAM tags. Control must have public default constructor (constructor that has no parameters). |
DataSetDSO | Provides access to ADO.Net DataSetá with data bindings -áusing dataSrc and dataFld attributes. Can initialize ADO.Net DataSet and fill with data it from DBMS (SqlServer, OleDb source etc.) or from XML file using PARAM tags. |
DataViewDSO | Provides access to ADO.Net DataTable and DataView with databindings -áusing dataSrc and dataFld attributes. Can be used with and withou DataSetDSO. Can initialize DataTable or DataView and fill it with data from DBMS (SqlServer, OleDb sources etc). |
DataColumnCollection | Represents Columns collectionáin DataViewDSO. Columnsáobject can ábe used from scripts. You may access columns collection with DataViewDSO.Columns property. |
DataColumn | Represent column in DataViewDSO.Columns collection. Column object can be used from scripts. You may access column object with DataView.Columns.Item property. |